String:Replace(find, replace, text, return)
Replaces the existence of find with replace from the text.
None.
function main() { Var:String myStr = "Hello World"; String:Replace("o", "i", myStr, myStr) //copy myStr but replace all "o" to "i" Konsol:Log(myStr) //see the log for "Helli Wirld" }